home *** CD-ROM | disk | FTP | other *** search
/ Champak 83 / (Vol 83) My Disc.iso / Games / drying.swf / scripts / frame_132 / PlaceObject2_137_543 / CLIPACTIONRECORD on(press).as next >
Text File  |  2008-08-08  |  364b  |  12 lines

  1. on(press){
  2.    if(this._currentframe != 1 && this.isWet == false)
  3.    {
  4.       _root.mcPlayer.isWet = false;
  5.       _root.mcPlayer.clothnum = this._currentframe - 1;
  6.       _root.mcPlayer.state = "cloth";
  7.       _root.mcPlayer.gotoAndStop("flcloth");
  8.       _root.mcPlayer.mccloth.gotoAndPlay("fl" + _root.mcPlayer.clothnum);
  9.       this.gotoAndStop(1);
  10.    }
  11. }
  12.